/* ===== CONTENEDOR IZQ + DER ===== */
.bloque-superior-incidencia{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}

@media (max-width: 1100px){
  .bloque-superior-incidencia{
    grid-template-columns: 1fr;
  }
}

/* ===== PANEL ===== */
.fr-panel{
  background: #ffffff;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  width: 100%;
  position: relative;
}

/* CABECERA */
.fr-panel__header{
  padding: 6px 10px;
  background: linear-gradient(180deg, #f6f8fb 0%, #eef2f7 100%);
  border-bottom: 1px solid #d7dde5;
}

.fr-panel__title{
  font-weight: 600;
  font-size: 12px;
  color: #1f2937;
}

/* LISTA */
.fr-panel__list{
  padding: 6px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ITEM (ALTURA REDUCIDA A LA MITAD) */
.fr-item{
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 6px;
  align-items: center;

  padding: 4px 6px;
  margin-bottom: 4px;

  background: #f8fafc;
  border: 1px solid #e4e9f0;
  border-radius: 6px;
}

/* BOTÓN COPIAR */
.fr-copy{
  width: 22px;
  height: 22px;
  border: 1px solid #d9e3f1;
  border-radius: 5px;
  cursor: pointer;

  background: #eaf2ff;
  color: #1e5bb8;

  display: grid;
  place-items: center;

  transition: background .15s ease;
}

.fr-copy i{
  font-size: 11px;
}

.fr-copy:hover{
  background: #dbe9ff;
}

/* TEXTO MÁS PEQUEÑO */
.fr-text{
  margin: 0;
  font-size: 11px;
  line-height: 0.95rem;
  color: #111827;
  word-break: break-word;
}

/* TOAST */
.fr-toast{
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  font-size: 10px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.fr-toast.show{
  opacity: 1;
  transform: translateY(0);
}
